home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 January / macformat46.iso / Shareware Plus / Developers / Library / AVF 1.1 Pack / AVF 1.1 pack ƒ folder / AVF 1.1 pack ƒ / PowerPlant ƒ / PP Basic Starter.h < prev   
Encoding:
Text File  |  1996-09-29  |  998 b   |  34 lines

  1. // ===========================================================================
  2. //    PP Basic Starter.h        ©1994-1996 Metrowerks Inc. All rights reserved.
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LApplication.h>
  8. #include "VideoSession.h"
  9. #include "OffscreenWorld.h"
  10. #include "OffscreenGroup.h"
  11. #include "AsyncBuffer.h"
  12.  
  13.  
  14. class    CPPStarterApp : public LApplication {
  15. public:
  16.                         CPPStarterApp();    
  17.     virtual             ~CPPStarterApp();        
  18.     virtual Boolean        ObeyCommand(CommandT inCommand, void* ioParam);    
  19.     virtual void        FindCommandStatus(CommandT inCommand,
  20.                             Boolean &outEnabled, Boolean &outUsesMark,
  21.                             Char16 &outMark, Str255 outName);                    
  22.     virtual void        ProcessNextEvent();
  23.     
  24.     LWindow                *theWindowP;
  25.     LView                *theViewP;
  26.     VideoSession        *theSessionP;
  27.     Rect                 theOffscreenRect;
  28.     OffscreenWorld        *theImage0P;
  29.     OffscreenWorld        *theImage1P;
  30.     OffscreenWorld        *theImage2P;
  31.     OffscreenGroup        *theImageGroupP;
  32.     AsyncBuffer            *theBufferP;
  33. };
  34.